module Hydrocraft
{
    imports
    {
        Base

    }

/************************ITEMS************************/

item HCWaxrecycled
    {
        Weight    		=    	0.1,
        Type    		=    	Normal,
        DisplayName    		=    	Recyled Wax,
        Icon    		=    	HCWaxrecycled,
		DisplayCategory = SurApi,
    }

/************************RECIPES************************/

recipe Recycle Wax
    {
    Crayons=10,
    Charcoal,
    [Recipe.GetItemTypes.StartFire],
    HCIngotmold,
    [Recipe.GetItemTypes.BlacksmithTongs],
    keep [Recipe.GetItemTypes.LeatherGloves]/HCFiresuit,
    keep HCSmelter2/HCFurnace2/HCBlastfurnace2,
    CanBeDoneFromFloor:true,
    Result:HCWaxrecycled,
    NeedToBeLearn:true,
    Time:1000,
    Category:Chemistry,
    OnCreate:getBurned,
    }

recipe Recycle Wax
    {
    Candle=3,
    Charcoal,
    [Recipe.GetItemTypes.StartFire],
    HCIngotmold,
    [Recipe.GetItemTypes.BlacksmithTongs],
    keep [Recipe.GetItemTypes.LeatherGloves]/HCFiresuit,
    keep HCSmelter2/HCFurnace2/HCBlastfurnace2,
    CanBeDoneFromFloor:true,
    Result:HCWaxrecycled,
    NeedToBeLearn:true,
    Time:1000,
    Category:Chemistry,
    OnCreate:getBurned,
    }

recipe Recycle Wax
    {
    HCRefinedbeeswax,
    Charcoal,
    [Recipe.GetItemTypes.StartFire],
    HCIngotmold,
    [Recipe.GetItemTypes.BlacksmithTongs],
    keep [Recipe.GetItemTypes.LeatherGloves]/HCFiresuit,
    keep HCSmelter2/HCFurnace2/HCBlastfurnace2,
    CanBeDoneFromFloor:true,
    Result:HCWaxrecycled,
    NeedToBeLearn:true,
    Time:1000,
    Category:Chemistry,
    OnCreate:getBurned,
    }

}